home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / objeas3a / workshop / sample.cod < prev    next >
Text File  |  1994-05-18  |  562b  |  26 lines

  1. Bevel Tbevel;
  2. Tbevel.init(179,132,280,179,THIN);
  3.  
  4. Panel TPanel;
  5. TPanel.init(232,188,174,102,OUT,THIN);
  6.  
  7. Button TestButton;
  8. TestButton.init(264,200,"I AM A BUTTON",TEXT);
  9. TestButton.show();
  10.  
  11. Icon TIcon;
  12. TIcon.init(342,230,"paint");
  13. Icon Ticon2;
  14. Ticon2.init(266,230,"spray");
  15. TIcon.show();
  16. Ticon2.show();
  17.  
  18. Gtext TText;
  19. TText.init(235,148,"This is a nice Dialog",0,7,1);
  20. TText.show();
  21.  
  22. Line lines[2];
  23. lines[0].init(435,167,199,167,14,3);
  24. lines[1].init(443,170,208,170,8,3);
  25. for(int numlines=0;numlines<2;numlines++)
  26.     lines[numlines].show();